.mp-holder{
    padding: 30px;
    background-color:#c2c2c2 ;
    overflow-x: hidden;
}

.mp-holder .mp-card{
    height: 100vh;
    border-radius: 20px;
    scroll-snap-align: start;
    margin: auto 0;

}


.mp-holder .mp-card .mp-card-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.mp-holder .mp-card .mp-card-img{
    width: 40%;
}

.mp-holder .mp-card .mp-card-img img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;

}

.mp-holder .mp-card .mp-card-info .mp-card-txt{
    width: 50%;
}

.mp-holder .mp-card .mp-card-info .mp-card-txt h2{
    font-size: 70px;
    background: linear-gradient(to bottom, #000000, #5f5f5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.mp-holder .mp-card .mp-card-info .mp-card-txt p{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mp-holder .gallery-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.mp-holder .mp-card .mp-card-info .mp-card-txt .mp-gallery{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.mp-holder .mp-card .mp-card-info .mp-card-txt .mp-gallery img{
    width: 90%;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

.mp-holder .mp-card .mp-card-info .mp-card-txt .mp-gallery img:hover{
    cursor:zoom-in;
    transform: scale(1.05);
}

@media (max-width: 768px){

    .mp-holder{
        padding: 10px;
    }
    .mp-holder .mp-card{
        height: 100%;
        margin-top:70px ;
        margin-bottom: 70px;
    }

    .mp-holder .mp-card .mp-card-info{
        flex-direction: column;
        padding: 0px;
    }

    .mp-holder .mp-card .mp-card-img{
        width: 100%;
    }

    .mp-holder .mp-card .mp-card-img img{
        height: 300px;
    }

    .mp-holder .mp-card .mp-card-info .mp-card-txt{
        width: 100%;
    }

    .mp-holder .mp-card .mp-card-info .mp-card-txt h2{
        font-size: 40px;
    }

    .mp-holder .mp-card .mp-card-info .mp-card-txt p{
        font-size: 15px;
    }

    .mp-holder .mp-card .mp-card-info .mp-card-txt .mp-gallery img{
        height: 100px;
        justify-content: center;
    }

    .mp-holder .gallery-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

}

@media (min-width: 768px) and (max-width: 1024px){

    .mp-holder .mp-card .mp-card-info .mp-card-txt .mp-gallery img{
        height: 150px;
    }

    .mp-holder .gallery-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

}